- Published on
State in SwiftUI
- Authors
- Name
首先我们还是从官方的文档来了解一手信息
https://developer.apple.com/documentation/swiftui/state
State A property wrapper type that can read and write a value managed by SwiftUI.
是什么:一种属性包装类型
有什么作用:通过SwiftUI管理的可以读写的值
@frozen @propertyWrapper
struct State<Value>
Use state as the single source of truth for a given value type that you store in a view hierarchy. Create a state value in an App, Scene, or View by applying the @State attribute to a property declaration and providing an initial value.
Declare state as private to prevent setting it in a memberwise initializer, which can conflict with the storage management that SwiftUI provides:
通过申明 state 为 private 以防止在成员初始化状态中设置。否者会与 SwiftUI提供的存储管理冲突。
SwiftU manages the property's storage. When the value changes, SwiftUI updates the parts of the view hierarchy that depend on the value.
To access a state's underlying value, you use its wrappedValue property. However, as a shortcut Swift enables you to access the wrapped value by referring directly to the state instance.
想访问 state 的基础值,我们可以使用它的属性,wrappedValue。 不过,作为一种快捷方式,swift 允许你直接引用state实例来访问 wrappedValue。
原来是这样啊,我们在工程中经常直接使用 @state 修饰的属性,原来是一种 shortcut.
能否使用State修饰引用类型
按照常规的用法,State只能修饰值类型,比如Int、Sring、Struct、Collections、Enum、Dictionary等等。
Swift.org 中有一个文档是专门介绍值类型和引用类型的,其中有这样一段话:
Collections are Value Types But in Swift, composing value types doesn’t stop with structures and enumerations. Although in many languages, collections such as arrays and dictionaries are reference types, in Swift the standard collections Array, Dictionary and String are all value types. This means a struct can contain an array of structs, maybe a dictionary of key value pairs, a set of enums. As long as everything is composed of value types, an instance of even a complex type is treated as a value.
所以,如果是引用类型组成的Array、Dictionary等等,也是可以使用State修饰的。其本质上来说是值类型。 对于引用类型,我们也可以使用State修饰,SwiftUI能监测到的是整个引用类型的变化,对于引用类型的属性的变化,SwiftUI是无法监测到的。
在实际的开发过程,我遇到一个问题,就是NSImage到底是引用类型还是值类型呢? NSImage 是一个 引用类型,因为它是基于 Objective-C 的类,而在 Swift 中,所有基于 Objective-C 的类默认是引用类型。
但是我在使用State修饰NSImage的时候,发现并没有报错,而且在使用的过程中也没有出现问题。这是为什么呢? 因为我们只是把NSImage当成了一个简单类型来使用。对其的更改也是通过重新赋值的方式来进行的,这样SwiftUI就能监测到这个值的变化了。